home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9102.ARJ / 9N02098B < prev    next >
Text File  |  1992-07-06  |  234b  |  11 lines

  1.  
  2.  
  3. typedef struct _SYMBOL
  4.   {
  5.   struct _SYMBOL *next;  // linkage to next symbol
  6.   unsigned long type;    // type flags
  7.   unsigned long value;   // value
  8.   char symbol[1];        // symbol string (variable size)
  9.   } SYMBOL;
  10.  
  11.